home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / bbs / IceDemo56.lzh / IceBBSDemo / BBS_S / makemotd < prev   
AmigaDOS Script File  |  1992-07-26  |  755b  |  27 lines

  1. .key tfile,user
  2.  
  3. ; this is a script file to build a custom Message Of The Day for display
  4. ; to a particular user at the time he logs in.
  5. ;
  6. ; to use this you must place it in you S: directory and call it MAKEMOTD
  7. ;
  8.  
  9. stack 10000
  10.  
  11. ; I make a copy of the normal MOTD file, this will become the first
  12. ; part of the custom MOTD file
  13.  
  14. copy VBBS:errormessages/motd <tfile>
  15.  
  16. ; Now append to the copy of the motd file some information about the
  17. ; user who has just logged in
  18.  
  19. VBBS:bbs_c/motdinfo <tfile> <user> -1
  20.  
  21. ; Now scan the "files:@newfiles" directory to see if there have been
  22. ; any files added after the user last logged in, if there are some new
  23. ; files add their names/dates/sizes to the MOTD file.
  24.  
  25. VBBS:bbs_c/newsince <tfile> <user> -2 Files:@NewFiles
  26.  
  27.